home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / STDLIB.PAK / BITSET.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  219b  |  15 lines

  1. #include <bitset>
  2. #include <iostream.h>
  3.  
  4. using namespace std;
  5.  
  6. int main ()
  7. {
  8.     bitset<8> b;
  9.     b |= 5;
  10. #ifndef RWSTD_NO_NONTYPE_ARGS
  11.     cout << b << endl; // results in 00000101
  12. #endif
  13.     return 0;
  14. }
  15.